#!/bin/sh

. /etc/rc.common

##
# RadmindUpdateMonitor daemon (rumd) StartupItem for 10.3.x
##

StartService ()
{
    ConsoleMessage Starting Radmind Update Monitor 
    /opt/local/sbin/rumd
}

StopService ()
{
    ConsoleMessage Stopping Radmind Update Monitor 
    killall -TERM rumd >/dev/null 2>&1
}

RestartService ()
{
    StopService
    StartService
}

RunService "$1"

exit 0
